home *** CD-ROM | disk | FTP | other *** search
/ Danny Amor's Online Library / Danny Amor's Online Library - Volume 1.iso / html / faqs / faq / fonts-faq / part2 < prev    next >
Encoding:
Text File  |  1995-07-25  |  44.9 KB  |  1,079 lines

  1. Subject: comp.fonts FAQ: General Info (2/3)
  2. Newsgroups: comp.fonts,comp.answers,news.answers
  3. From: norm@ora.com (Norman Walsh)
  4. Date: 9 Nov 1994 07:35:41 -0500
  5.  
  6. Archive-name: fonts-faq/part2
  7. Version: 2.0.4
  8.  
  9. Subject: 1.13. File Formats
  10.   
  11.   Many different kinds of files are available on the net.  These files
  12.   contain many different kinds of data for many different architectures.
  13.   Frequently, the extension (trailing end) of a filename gives a good
  14.   clue as to the format of its contents and the architecture that it was
  15.   created on.
  16.   
  17.   In order to save space, most files on the net are compressed in one way
  18.   or another.  Many compression/decompression programs exist on multiple
  19.   architectures.
  20.   
  21.   Multiple files and directories are often combined into a single
  22.   `archive' file.  Many archive formats perform compression automatically.
  23.   
  24.   File Format Extensions
  25.   ======================
  26.   
  27.      * .tar
  28.   
  29.        Unix `tape archive' format.  Tar files can contain multiple files
  30.        and directories.  Unlike most archiving programs, tar files are
  31.        held together in a wrapper but are not automatically compressed by
  32.        tar.
  33.   
  34.      * .Z
  35.   
  36.        Unix `compress' format.  Compression doesn't form a wrapper around
  37.        multiple files, it simply compresses a single file.  As a result,
  38.        you will frequently see files with the extension .tar.Z.  This
  39.        implies that the files are compressed tar archives.
  40.   
  41.      * .z .gz
  42.   
  43.        GNU zip format.  GNU zip doesn't form a wrapper around multiple
  44.        files, it simply compresses a single file.  As a result, you will
  45.        frequently see files with the extension .tar.z or .tar.gz.  This
  46.        implies that the files are compressed tar archives.  Do not confuse
  47.        GNU Zip and PKZip or GNU Zip and Unix compress, those are three
  48.        different programs!
  49.   
  50.      * .hqx
  51.   
  52.        Macintosh `BinHex' format.  In order to reliably transfer Mac files
  53.        from one architecture to another, they are BinHex encoded.  This
  54.        is actually an ascii file containing mostly hexadecimal digits.
  55.        It is neither a compression program nor an archive wrapper.
  56.   
  57.      * .sit
  58.   
  59.        Macintosh `Stuffit' archive.
  60.   
  61.      * .cpt
  62.   
  63.        Macintosh `Compactor' archive.
  64.   
  65.        Like the .tar.Z format that is common among Unix archives,
  66.        Macintosh archives frequently have the extensions .sit.hqx or
  67.        .cpt.hqx indicating a BinHex'ed archive.
  68.   
  69.      * .arc
  70.   
  71.        PC `arc' archive.  This is an older standard (in PC terms, at
  72.        least) and has gone out of fashion.
  73.   
  74.      * .zip
  75.   
  76.        PC `zip' archive.  This is the most common PC archive format today.
  77.   
  78.      * .arj
  79.   
  80.        PC `arj' archive.
  81.   
  82.      * .zoo
  83.   
  84.        PC `zoo' archive
  85.   
  86.      * .lzh
  87.   
  88.        PC `lha/lharc' archive.
  89.   
  90.   Font Formats
  91.   ============
  92.   
  93.   Just as the are many, many archive formats, there are many different
  94.   font formats.  The characteristics of some of these formats are
  95.   discussed below.  Once again, the file extension may help you to
  96.   determine the font type.  (On the Mac, the resource TYPE field is
  97.   (probably) a better indicator).
  98.   
  99.      * PostScript Type 1 Fonts:
  100.   
  101.        Postscript Type 1 fonts (Also called ATM (Adobe Type Manager)
  102.        fonts, Type 1, and outline fonts) contains information, in outline
  103.        form, that allows a postscript printer, or ATM to generate fonts
  104.        of any size.  Most also contain hinting information which allows
  105.        fonts to be rendered more readable at lower resolutions and small
  106.        type sizes.
  107.   
  108.      * PostScript Type 3 Fonts:
  109.   
  110.        Postscript type 3 fonts are an old outline font format that is not
  111.        compatible with ATM.  Most developers have stopped using this
  112.        format except in a few special cases, where special type 3
  113.        characteristics (pattern fills inside outlines, for example) have
  114.        been used.
  115.   
  116.      * TrueType Fonts:
  117.   
  118.        Truetype fonts are a new font format developed by Microsoft with
  119.        Apple.  The rendering engine for this font is built into system 7
  120.        and an init, the Truetype init, is available for system 6 (freeware
  121.        from Apple).  It is also built into MS Windows v3.1.  Like
  122.        PostScript Type 1 and Type 3 fonts, it is also an outline font
  123.        format that allows both the screen, and printers, to scale fonts to
  124.        display them in any size.
  125.   
  126.      * Bitmap Fonts:
  127.   
  128.        Bitmap fonts contain bitmaps of fonts in them.  This a picture of
  129.        the font at a specific size that has been optimized to look good
  130.        at that size. It cannot be scaled bigger without making it look
  131.        horrendously ugly.  On the Macintosh, bitmap fonts also contain
  132.        the kerning information for a font and must be installed with both
  133.        type 1 and type 3 fonts.  Their presence also speeds the display
  134.        of commonly used font sizes.
  135.   
  136.   Font Format Extensions
  137.   ======================
  138.   
  139.      * .afm
  140.   
  141.        Adobe Type 1 metric information in `ascii' format (human parsable)
  142.   
  143.      * .bco
  144.   
  145.        Bitstream compressed outline
  146.   
  147.      * .bdf
  148.   
  149.        Adobe's Bitmap Distribution Format.  This format can be converted
  150.        to the platform specific binary files required by the local X
  151.        Windows server.  This is a bitmap font format distributed in ASCII.
  152.   
  153.      * .bez
  154.   
  155.        Bezier outline information
  156.   
  157.      * .chr
  158.   
  159.        Borland stroked font file
  160.   
  161.      * .ff, .f3b, .fb
  162.   
  163.        Sun formats.  More info when I know more...
  164.   
  165.      * .fot
  166.   
  167.        MS-Windows TrueType format fonts
  168.   
  169.      * .gf
  170.   
  171.        Generic font (the output of TeX's MetaFont program (possibly
  172.        others?))
  173.   
  174.      * .fli
  175.   
  176.        Font libraries produced by emTeX fontlib program.  Used by emTeX
  177.        drivers and newer versions of dvips.
  178.   
  179.      * .mf
  180.   
  181.        TeX MetaFont font file (text file of MetaFont commands)
  182.   
  183.      * .pfa
  184.   
  185.        Adobe Type 1 Postscript font in ASCII format (PC/Unix) I believe
  186.        that this format is suitable for directly downloading to your
  187.        PostScript printer (someone correct me if I'm wrong ;-)
  188.   
  189.      * .pfb
  190.   
  191.        Adobe Type 1 PostScript font in "binary`' format (PC/Unix) Note:
  192.        this format is not suitable for downloading directly to your
  193.        PostScript printer.  There are utilities for conversion between
  194.        PFB and PFA (see the utilities section of the FAQ).
  195.   
  196.      * .pfm
  197.   
  198.        Printer font metric information in Windows format
  199.   
  200.      * .pk
  201.   
  202.        TeX packed bitmap font file (also seen as .###pk where ### is a
  203.        number)
  204.   
  205.      * .pl
  206.   
  207.        TeX `property list' file (a human readable version of .tfm)
  208.   
  209.      * .ps
  210.   
  211.        Frequently, any PostScript file.  With respect to fonts, probably
  212.        a Type3 font.  This designation is much less `standard' than the
  213.        others.  Other non-standard extensions are .pso, .fon, and .psf
  214.        (they are a mixture of type 1 and type 3 fonts).
  215.   
  216.      * .pxl
  217.   
  218.        TeX pixel bitmap font file (obsolete, replaced by .pk)
  219.   
  220.      * .sfl
  221.   
  222.        LaserJet bitmapped softfont, landscape orientation
  223.   
  224.      * .sfp
  225.   
  226.        LaserJet bitmapped softfont, portrait orientation
  227.   
  228.      * .sfs
  229.   
  230.        LaserJet scalable softfont
  231.   
  232.      * .tfm
  233.   
  234.        TeX font metric file
  235.   
  236.      * .vf
  237.   
  238.        TeX virtual font which allows building of composite fonts (a
  239.        character can be composed of any sequence of movements, characters
  240.        (possibly from multiple fonts) rules and TeX specials)
  241.   
  242.      * .vpl
  243.   
  244.        TeX `property list' (human readable) format of a .vf
  245.   
  246. Subject: 1.14. Ligatures
  247.   
  248.   A ligature occurs where two or more letterforms are written or printed
  249.   as a unit.  Generally, ligatures replace characters that occur next to
  250.   each other when they share common components.  Ligatures are a subset
  251.   of a more general class of figures called "contextual forms."
  252.   Contextual forms describe the case where the particular shape of a
  253.   letter depends on its context (surrounding letters, whether or not it's
  254.   at the end of a line, etc.).
  255.   
  256.   One of the most common ligatures is "fi".  Since the dot above a
  257.   lowercase 'I' interferes with the loop on the lowercase 'F', when 'f'
  258.   and 'i' are printed next to each other, they are combined into a single
  259.   figure with the dot absorbed into the 'f'.
  260.   
  261.   An example of a more general contextual form is the greek lowercase
  262.   sigma.  When typesetting greek, the selection of which 'sigma' to use
  263.   is determined by whether or not the letter occurs at the end of the
  264.   word (i.e., the final position in the word).
  265.   
  266.      * Amanda Walker provides the following discussion of ligatures:
  267.   
  268.        Ligatures were originally used by medieval scribes to conserve
  269.        space and increase writing speed.  A 14th century manuscript, for
  270.        example, will include hundreds of ligatures (this is also where
  271.        "accents" came from).  Early typefaces used ligatures in order to
  272.        emulate the appearance of hand-lettered manuscripts.  As
  273.        typesetting became more automated, most of these ligatures fell
  274.        out of common use.  It is only recently that computer based
  275.        typesetting has encouraged people to start using them again
  276.        (although 'fine art' printers have used them all along).
  277.        Generally, ligatures work best in typefaces which are derived from
  278.        calligraphic letterforms.  Also useful are contextual forms, such
  279.        as swash capitals, terminal characters, and so on.
  280.   
  281.        A good example of a computer typeface with a rich set of ligatures
  282.        is Adobe Caslon (including Adobe Caslon Expert).  It includes:
  283.   
  284.        Upper case, lower case, small caps, lining numerals, oldstyle
  285.        numerals, vulgar fractions, superior and inferior numerals, swash
  286.        italic caps, ornaments, long s, and the following ligatures:
  287.   
  288.        ff fi fl ffi ffl Rp ct st Sh Si Sl SS St (where S=long s)
  289.   
  290.        [Ed: Another common example is the Computer Modern Roman typeface
  291.        that is provided with TeX. this family of fonts include the ff,
  292.        fi, fl, ffi, and ffl ligatures which TeX automatically uses when
  293.        it finds these letters juxtaposed in the text.]
  294.   
  295.        While there are a large number number of possible ligatures,
  296.        generally only the most common ones are actually provided.  In
  297.        part, this is because the presence of too many alternate forms
  298.        starts reducing legibility.  A case in point is Luxeuil Miniscule,
  299.        a highly-ligatured medieval document hand which is completely
  300.        illegible to the untrained eye (and none too legible to the
  301.        trained eye, either :)).
  302.   
  303.      * Don Hosek offers the following insight into ligatures:
  304.   
  305.        Ligatures were used in lead type, originally in imitation of
  306.        calligraphic actions (particularly in Greek which retained an
  307.        excessive number of ligatures in printed material as late as the
  308.        19th century), but as typefaces developed, ligatures were retained
  309.        to improve the appearance of certain letter combinations. In some
  310.        cases, it was used to allow certain letter combinations to be more
  311.        closely spaced (e.g., "To" or "Vo") and were referred to as
  312.        "logotypes". In other cases, the designs of two letters were merged
  313.        to keep the overall spacing of words uniform. Ligatures are
  314.        provided in most contemporary fonts for exactly this reason.
  315.   
  316.      * Liam Quin makes the following observations:
  317.   
  318.        The term ligature should only be used to describe joined letters in
  319.        printing, not letters that overlap in manuscripts.
  320.   
  321.        Many (not all) accents came from the practice of using a tilde or
  322.        other mark to represent an omitted letter, so that for example the
  323.        Latin word `Dominus' would be written dns, with a tilde or bar over
  324.        the n.  This is an abbreviation, not a ligature.
  325.   
  326.        Most ligatures vanished during the 15th and 16th Centuries.  It was
  327.        simply too much work to use them, and it increased the price of
  328.        book production too much.
  329.   
  330.   [Ed: there is no "complete" set of ligatures.]
  331.   
  332. Subject: 1.15. Built-in Fonts
  333.   
  334.      * PostScript printers (and Adobe Type Manager) with 13 fonts have:
  335.   
  336.        ???
  337.   
  338.      * Postscript printers with 17 fonts have:
  339.   
  340.        Courier, Courier-Bold, Courier-BoldOblique, Courier-Oblique,
  341.        Helvetica, Helvetica-Bold, Helvetica-BoldOblique, Helvetica-Narrow,
  342.        Helvetica-Narrow-Bold, Helvetica-Narrow-BoldOblique,
  343.        Helvetica-Narrow-Oblique, Helvetica-Oblique, Symbol, Times-Bold,
  344.        Times-BoldItalic, Times-Italic, Times-Roman
  345.   
  346.      * Postscript printers with 35 fonts have:
  347.   
  348.        All of the above, plus the following:
  349.   
  350.        ZapfChancery-MediumItalic, ZapfDingbats, AvantGarde-Book,
  351.        AvantGarde-BookOblique, AvantGarde-Demi, AvantGarde-DemiOblique,
  352.        Bookman-Demi, Bookman-DemiItalic, Bookman-Light,
  353.        Bookman-LightItalic, NewCenturySchlbk-Bold,
  354.        NewCenturySchlbk-BoldItalic, NewCenturySchlbk-Italic,
  355.        NewCenturySchlbk-Roman, Palatino-Bold, Palatino-BoldItalic,
  356.        Palatino-Italic, Palatino-Roman
  357.   
  358.      * HP LaserJet printers (II, IIP)
  359.   
  360.        Courier 10, Courier 12, LinePrinter 16.66, ...
  361.   
  362.      * HP LaserJet printers (III, IIIP)
  363.   
  364.        All of the above, plus the following:
  365.   
  366.        Scalable Times Roman and Scalable Univers using Compugraphic's
  367.        Intellifont hinted font format.
  368.   
  369.      * SPARCPrinters
  370.   
  371.        The basic 35 fonts plus four scaled faces of each of Bembo, Gill
  372.        Sans, Rockwell, Lucida, Lucida Bright, Sans and Typewriter, giving
  373.        a total of 57 fonts, all in the F3 format.
  374.   
  375. Subject: 1.16. Glossary
  376.   
  377.   [ I ripped this right out of the manual I wrote for Sfware.  If you have
  378.   comments, improvements, suggestions, please tell me... ]
  379.   
  380.   anti-aliasing
  381.        [ed: this is an 'off-the-cuff' definition, feel free to clarify it
  382.        for me ;-) ]
  383.   
  384.        On low-resolution bitmap devices (where ragged, ugly characters
  385.        are the norm) which support more than two colors, it is possible
  386.        to provide the appearance of higher resolution with anti-aliasing.
  387.        Anti-aliasing uses shaded pixels around the edges of the bitmap
  388.        to give the appearance of partial-pixels which improves the
  389.        apparent resolution.
  390.   
  391.   baseline
  392.        The baseline is an imaginary line upon which each character rests.
  393.        Characters that appear next to each other are (usually) lined up so
  394.        that their baselines are on the same level.  Some characters extend
  395.        below the baseline ("g" and "j", for example) but most rest on it.
  396.   
  397.   bitmap
  398.        A bitmap is an array of dots. If you imagine a sheet of graph paper
  399.        with some squares colored in, a bitmap is a compact way of
  400.        representing to the computer which squares are colored and which
  401.        are not.
  402.   
  403.        In a bitmapped font, every character is represented as a pattern of
  404.        dots in a bitmap. The dots are so small (300 or more dots-per-inch,
  405.        usually) that they are indistinguishable on the printed page.
  406.   
  407.   character
  408.        (1) The smallest component of written language that has semantic
  409.        value.  Character refers to the abstract idea, rather than a
  410.        specific shape (see also glyph), though in code tables some form
  411.        of visual representation is essential for the reader's
  412.        understanding.  (2) The basic unit of encoding for the Unicode
  413.        character encoding, 16 bits of information.  (3) Synonym for "code
  414.        element".  (4) The English name for the ideographic written
  415.        elements of Chinese origin.
  416.   
  417.   download
  418.        Downloading is the process of transferring information from one
  419.        device to another.  This transferral is called downloading when the
  420.        transfer flows from a device of (relatively) more power to one of
  421.        (relatively) less power.  Sending new fonts to your printer so that
  422.        it "learns" how to print characters in that font is called
  423.        downloading.
  424.   
  425.   font
  426.        A particular collection of characters of a typeface with unique
  427.        parameters in the 'Variation vector', a particular instance of
  428.        values for orientation, size, posture, weight, etc., values.  The
  429.        word font or fount is derived from the word foundry, where,
  430.        originally, type was cast.  It has come to mean the vehicle which
  431.        holds the typeface character collection.  A font can be metal,
  432.        photographic film, or electronic media (cartridge, tape, disk).
  433.   
  434.   glyph
  435.        (1) The actual shape (bit pattern, outline) of a character image.
  436.        For example, an italic 'a' and a roman 'a' are two different glyphs
  437.        representing the same underlying character.  In this strict sense,
  438.        any two images which differ in shape constitute different glyphs.
  439.        In this usage, "glyph" is a synonym for "character image", or
  440.        simply "image".  (2) A kind of idealized surface form derived from
  441.        some combination of underlying characters in some specific
  442.        context, rather than an actual character image.  In this broad
  443.        usage, two images would constitute the same glyph whenever they
  444.        have essentially the same topology (as in oblique 'a' and roman
  445.        'a'), but different glyphs when one is written with a hooked top
  446.        and the other without (the way one prints an 'a' by hand).  In
  447.        this usage, "glyph" is a synonym for "glyph type," where glyph is
  448.        defined as in sense 1.
  449.   
  450.   hints
  451.        When a character is described in outline format the outline has
  452.        unlimited resolution.  If you make it ten times as big, it is just
  453.        as accurate as if it were ten times as small.
  454.   
  455.        However, to be of use, we must transfer the character outline to a
  456.        sheet of paper through a device called a raster image processor
  457.        (RIP). The RIP builds the image of the character out of lots of
  458.        little squares called picture elements (pixels).
  459.   
  460.        The problem is, a pixel has physical size and can be printed only
  461.        as either black or white. Look at a sheet of graph paper. Rows and
  462.        columns of little squares (think: pixels). Draw a large `O' in the
  463.        middle of the graph paper. Darken in all the squares touched by the
  464.        O. Do the darkened squares form a letter that looks like the O you
  465.        drew? This is the problem with low resolution (300 dpi). Which
  466.        pixels do you turn on and which do you leave off to most accurately
  467.        reproduce the character?
  468.   
  469.        All methods of hinting strive to fit (map) the outline of a
  470.        character onto the pixel grid and produce the most
  471.        pleasing/recognizable character no matter how coarse the grid is.
  472.   
  473.   kerning
  474.        (noun): That portion of a letter which extends beyond its width,
  475.        that is, the letter shapes that overhang - the projection of a
  476.        character beyond its sidebearings.
  477.   
  478.        (verb): To adjust the intercharacter spacing in character groups
  479.        (words) to improve their appearance.  Some letter combinations
  480.        ("AV" and "To", for example) appear farther apart than others
  481.        because of the shapes of the individual letters.
  482.   
  483.        Many sophisticated word processors move these letter combinations
  484.        closer together automatically.
  485.   
  486.   outline font/format
  487.        See 'scalable font'
  488.   
  489.   point
  490.        The (more or less) original point system (Didot) did have exactly
  491.        72 points to the inch. The catch is that it was the French
  492.        imperial inch, somewhat longer than the English inch, and it went
  493.        away in the French revolution. What most people now think of as
  494.        points were established by the United States Typefounders
  495.        Association in 1886. This measure was a matter of convenience for
  496.        the members of the Association, who didn't want to retool any more
  497.        than they had to, so it had no relationship to the inch. By that
  498.        date, people realized that the inch was an archaic measure anyway;
  499.        the point was set to be 1/12 of a pica, and an 83-pica distance
  500.        was made equal to 35 centimeters. (Talk about arbitrary!)
  501.   
  502.        Thus the measure of 72.27/in. is just an approximation. Of course,
  503.        when PostScript was being written, it was necessary to fit into an
  504.        inch-measured world. For the sake of simplicity PostScript defined
  505.        a point as exactly 1/72". With the prevalance of DTP, the
  506.        simplified point has replaced the older American point in many
  507.        uses. Personally, I don't see that it matters one way or the
  508.        other; all that counts is that there's a commonly-understood unit
  509.        of measurement that allows you to get the size you think you want.
  510.        That is, after all, the point ;)
  511.   
  512.   scalable font
  513.        A scalable font, unlike a bitmapped font, is defined mathematically
  514.        and can be rendered at any requested size (within reason).
  515.   
  516.   softfont
  517.        A softfont is a bitmapped or scalable description of a typeface or
  518.        font.  They can be downloaded to your printer and used just like
  519.        any other printer font.  Unlike built-in and cartridge fonts,
  520.        softfonts use memory inside your printer.  Downloading a lot of
  521.        softfonts may reduce the printers ability to construct complex
  522.        pages.
  523.   
  524.   symbol set
  525.        The symbol set of a font describes the relative positions of
  526.        individual characters within the font.  Since there can only be 256
  527.        characters in most fonts, and there are well over 256 different
  528.        characters used in professional document preparation, there needs
  529.        to be some way to map characters into positions within the font.
  530.        The symbol set serves this purpose.  It identifies the "map" used
  531.        to position characters within the font.
  532.   
  533.   typeface
  534.        The features by which a character's design is recognized, hence
  535.        the word face.  Within the Latin language group of graphic shapes
  536.        are the following forms: Uncial, Blackletter, Serif, Sans Serif,
  537.        Scripts, and Decorative.  Each form characterizes one or more
  538.        designs.  Example: Serif form contains four designs called Old
  539.        Style, Transitional, Modern, and Slab Serif designs.  The typeface
  540.        called Bodoni is a Modern design, while Times Roman is a
  541.        Transitional design.
  542.   
  543.   This is Info file comp.fonts.faq.info, produced by Makeinfo-1.55 from
  544.   the input file FAQ.texinfo.
  545.   
  546. Subject: 1.17. Bibliography
  547.   
  548.   Editors note: the following books have been suggested by readers of
  549.   comp.fonts.  They are listed in no particular order.  I have lost the
  550.   citations for some of the submissions.  If you wrote a review that
  551.   appears below and you aren't credited, please let norm know.
  552.   
  553.   I have decided that this is the best section for pointers to other font
  554.   resources (specs and other documents, for example).  These appear after
  555.   the traditional bibliographic entries.  As usual I will happily accept
  556.   entries for this section.  As of 9/92, the only files listed are the
  557.   TrueType font information files available from Microsoft
  558.   
  559.   Bill Ricker contributed the following general notes:
  560.   
  561.   The Watson-Guptill, Godine, and Dover publishers all have many
  562.   typography titles. Godine and Dover tend to be excellent; W-G tends
  563.   toward 'how-to' books which are good for basics and juried Annuals of
  564.   job work.
  565.   
  566.   Hermann Zapf and his Design Philosophy, Society of Typographic Arts,
  567.   Chicago, 1987.
  568.   
  569.   On Stone -- The Art and Use of Tyography on the Personal Computer,
  570.   Sumner Stone, Bedford Arts, 1991.
  571.   
  572.   Of the Just Shaping of Letters, Albrecht Durer, isbn 0-486-21306-4.
  573.   
  574.   First published in 1525 as part of his theoretical treatise on applied
  575.   geomentry, "The Art of Measurment".
  576.   
  577.   Champ Flevry, Geofroy Troy.
  578.   
  579.   First published in 1529 Troy attempts, in this book, to design an ideal
  580.   Roman alphabet upon geometrical and aesthetic principles.
  581.   
  582.   The Alphabet & Elements of Lettering, Frederic W. Goudy, isbn
  583.   0-486-20792-7. Revised 1942 edition.
  584.   
  585.   This very intresting book looks at the history of letter shapes as well
  586.   font design.
  587.   
  588.   The Mac is Not a Typewriter, Robin Williams, Peachpit Press.
  589.   
  590.   A good, clear explanation of what typography is, and how to get it from
  591.   your computer. Mac-specific, but full of excellent general advice. I
  592.   think there's also a PC version. Available at most computer bookstores
  593.   
  594.   Rhyme and Reason: A Typographic Novel, Erik Spiekermann, H. Berthold AG,
  595.       ISBN 3-9800722-5-8.
  596.   
  597.   Printing Types (2 vols), Daniel Berkely Updike, Dover Press.
  598.   
  599.   Affordable edition of the most readable history of type, lots of
  600.   illustrations.
  601.   
  602.   Notes: Both the Dover and Harvard U. P. editions where 2 volumes.  The
  603.   Dover editions were paperback and the Harvard hardback.  It appears
  604.   that the Dover edition is out of print.  Collectible HUP editions are
  605.   not cheap although later HUP editions may be had.  Most libraries have
  606.   later HUP and Dover editions.  If someone knows of a source, please
  607.   pass it along.
  608.   
  609.   The Art of Hand Lettering, Helm Wotzkow, Dover Press, reprint from 1952.
  610.   
  611.   Looking Good In Print, Roger C. Parker, Ventana Press,       ISBN:
  612.   0-940087-32-4.
  613.   
  614.   Well, as a beginner's book, [it] isn't bad. I can't say that I agree
  615.   with the author's tastes all the time, but he at least gives some good
  616.   examples. Also there are some nice _Publish_-style makeovers.  Don
  617.   Hosek <dhosek@ymir.claremont.edu>
  618.   
  619.   Book Design: A Practical Introduction, Douglas Martin, Van Nostrand
  620.   Reinhold, New York: 1989. 206pp.
  621.   
  622.   Along with Jan White's book (see below), this provides a fairly
  623.   complete guide to book design.  Martin's book is somewhat more
  624.   conservative in outlook and also reflects his UK background.  Don Hosek
  625.   <dhosek@ymir.claremont.edu>
  626.   
  627.   Digital Typography: An Introduction to Type and Composition for Computer
  628.   System Design, Richard Rubinstein, Addison-Wesley, Reading,
  629.   Massachusetts: 1988. 340pp.
  630.   
  631.   An interesting, technological approach to typography which is worth
  632.   reading although not necessarily always worth believing. A not
  633.   insubstantial portion of the text is dedicated to representing type on
  634.   a CRT display and Rubinstein devotes some time to expressing
  635.   characteristics of typography numerically.  Don Hosek
  636.   <dhosek@ymir.claremont.edu>
  637.   
  638.   Graphic Design for the Electronic Age, Jan V. White, Watson-Guptill
  639.   Publications, New York: 1988. 212pp.
  640.   
  641.   A good handbook for document design. In a well-organized approach,
  642.   White covers the principles for laying out most of the typographics
  643.   features of a technical document. White is a bit overeager to embrace
  644.   sans-serif types and in places his layout ideas seem a bit garish, but
  645.   it's still a quite worthwhile book.  Don Hosek
  646.   <dhosek@ymir.claremont.edu>
  647.   
  648.   Xerox Publishing Standards: A Manual of Style and Design, Watson-Guptill
  649.   Publications, New York: 1988. 400pp.
  650.   
  651.   Overall, a disappointing book. It is divided into four sections of
  652.   widely varying intent: "Publishing Process," "Document Organization,"
  653.   "Writing and Style" and "Visual Design." None of them is really
  654.   adequate for the task and all are highly centered on the Xerox method
  655.   for publishing. As a guide to Xerox' process, it succeeds, but as a
  656.   manual for general use, it falls far short. In print.  Don Hosek
  657.   <dhosek@ymir.claremont.edu>
  658.   
  659.   Methods of Book Design (3rd edition), Hugh Williamson, Yale University
  660.   Press, New Haven: 1983. 408pp.
  661.   
  662.   It is a bit out-of-date as regards technology, but on issues relating
  663.   purely to design it is comprehensive and definitive.  Well, I suppose
  664.   it could be argued that printing technology influences design - e.g.
  665.   some types look fine in metal but lousy in digital imagesetting - and
  666.   therefore a book that is out-of-date in technology can't really be
  667.   "definitive" in matters of design either. In any event, _Methods_ is
  668.   more than adequate for a beginner's needs.  My paper-bound copy (ISBN
  669.   0-300-03035-5) was \$13.95; cheap at twice the price!  Cameron Smith
  670.   <cameron@symcom.math.uiuc.edu>
  671.   
  672.   The Thames & Hudson Manual of typography, Rauri McLean, Thames & Hudson
  673.   
  674.   An excellent book if you start getting more interested in type.  Look
  675.   for Rauri McLean's other books after this one...  Liam R.E. Quin
  676.   <lee@sq.com>
  677.   
  678.   Typography and Why it matters, Fernand Baudin.
  679.   
  680.   There is no better introduction than [it].  It's not a primer on
  681.   subjects such as "what does Avant Garde look like," or "This is a good
  682.   font for books." It is a good primer on the things you need to know
  683.   before the rest should be considered. He's a lovely writer, to boot.
  684.   
  685.   [My copy is at work, so I may have munged the title-look up Baudin in
  686.   "Books in Print" and improvise :-)]
  687.   
  688.   Ari Davidow <ari@netcom.com>
  689.   
  690.   Better Type, Betty Binns
  691.   
  692.   It's definitely not a lightweight beginner's introduction, but I've
  693.   found [it] to be indispensable.  It's a large-format hardcover, but you
  694.   can find it remaindered for cheap if you look around.  The book goes
  695.   into great detail about how factors like line spacing, line length,
  696.   point size, and design of typeface (evenness of stroke weight,
  697.   x-height, etc.) affect readability.  When you've gotten the basics out
  698.   of the way and want to learn more about the fine nuances of type color,
  699.   this book is an absolute must.  David Mandl <dmandl@bilbo.shearson.com>
  700.   
  701.   Printing Types: An Introduction..., S. Lawson, (revised) 1990
  702.   
  703.   I'd also recommend Alexander S. Lawson's books especially /Printing
  704.   Types: An Intro.../ (revised), 1990, which includes electronic types
  705.   now.  Bill Ricker <wdr@world.std.com>
  706.   
  707.   Twentieth Century Type Designers, Sebastian Carter, 1987.
  708.   
  709.   Discusses adaptaters of old faces to machine caster and film/laser, as
  710.   well as new works.  Bill Ricker <wdr@world.std.com>
  711.   
  712.   Tally of Types, Stanley Morrison, Cambridge University Press.
  713.   
  714.   A keepsake for CUP on the Monotype fonts he'd acquired for them when he
  715.   was Type Advisor to both Brit.Monotype & CUP (Cambridge University
  716.   Press, Cambs.UK), which discusses his hindsight on some of the great
  717.   revival fonts and some of the better new fonts.  Bill Ricker
  718.   <wdr@world.std.com>
  719.   
  720.   Chicago Manual of Style, University of Chicago Press, 1982;
  721.                 ISBN 0-226-10390-0.
  722.   
  723.   The chapter on Design and Typography is most directly relevant, but
  724.   there are a lot of hints scattered all through the Chicago Manual on
  725.   making your words more readable and your pages more attractive.  Stan
  726.   Brown <brown@ncoast.org>
  727.   
  728.   X Window System Administrator's Guide (O'Reilly X Window System Guides,
  729.   volume 8), O'Reilly
  730.   
  731.   It gives advice about setting up fonts, etc.  Liam Quin <lee@sq.com>
  732.   
  733.   How Bodoni intended his types to look Bodoni, Giambattista. Fregi e
  734.   Majuscole Incise e Fuse de ...  Bodoni, Harvard University Library
  735.   (repr).
  736.   
  737.   Inexpensive collectible, reproduced as a keepsake by the Houghton
  738.   Library at Harvard. [wdr]
  739.   
  740.   The Elements of Typographic Style, Robert Bringhurst, Hartley & Marks
  741.   0-88179-033-8 pbk \$15, Z246.B74 1992 0-88179-110-5 cloth, \$25.
  742.   
  743.   A typography for desktop publishers who want to absorb some style.
  744.   Informed by the historical european tradition and the desktop
  745.   advertising, tempered by oriental yin-yang and examples. A page-turner
  746.   with repeat-read depth.
  747.   
  748.   The only book I've seen that discusses page proportions that admits
  749.   there are more than three ways that describes how to find one that
  750.   feels good for your page. [wdr]
  751.   
  752.   Hermann Zapf on the cover-blurb: "All desktop typographers should study
  753.   this book. ... I wish to see this book become the Typographers' Bible."
  754.   
  755.   Printing It, Clifford Burke, Ballantine,  0-345-02694-2.
  756.   
  757.   Manual for the hobby letterpress printer. [wdr]
  758.   
  759.   Twentieth Century Type Designers, Sebastian Carter, Taplinger, 1987.
  760.   
  761.   Discusses the talented adaptators of old faces to machine caster and
  762.   film/laser, as well as the designers of new works.  Indexed? [wdr]
  763.   
  764.   Design with Type, Carl Dair, University of Toronto Press, 0-8020-1426-7.
  765.   
  766.   In print again (or still?); the ISBN above may be stale.
  767.   
  768.   A great introduction to the issues of practicality and taste that
  769.   confront the users of type. A prized possession. I only regret that the
  770.   book does not include among the excerpts from his Westvaco pamphlets
  771.   the Seven Don'ts of Typography. [wdr]
  772.   
  773.   Typography 6: The Annual of the Type Directors Club, Susan Davis, ed.,
  774.   Watson-Guptill, 0-8230-5540-x.
  775.   
  776.   Specimens of Type Faces in the U.S. G.P.O., John J. Deviny, director.,
  777.   US G.P.O.
  778.   
  779.   Practice of Typography: Plain Printing Types, Theodore Low De Vinne,
  780.   Century Co./DeVinne Press.
  781.   
  782.   One of the earlier critical studies, in four volumes of which this is
  783.   my personal favorite, and still a classic reference. If one wants to
  784.   understand 18th and 19th century typography in context, this writer
  785.   lived the transition  from eclectic to standard sizes, and comments
  786.   with taste. [wdr]
  787.   
  788.   An Essay on Typography, Eric Gill, Godine,  0-87923-762-7.
  789.   
  790.   The Alphabet and Elements of Lettering, Frederic W. Goudy, Dorset Press
  791.   (Marboro Books), 0-88029-330-6
  792.   
  793.   Lovely. A wonderful way to learn Goudy's taste.
  794.   
  795.   Stanley Morison Displayed, Herbert Jones,  Frederick Muller Ltd / W,
  796.   0-584-10352-2.
  797.   
  798.   Lovely. A wonderful way to learn Morrison's taste.
  799.   
  800.   Printing Types: An Introduction..., Alexander S. Lawson et. al., Beacon
  801.   1971,?Godine? 1990; (2nd Ed includes electronic types now)
  802.   
  803.   "Good introduction to comparisons of typefaces, with a detailed history
  804.   and a key family or face of each general category.  Denounces rigid
  805.   indexes of type faces." [wdr]
  806.   
  807.   Anatomy of a Typeface, Alexander Lawson,  Godine, 0-87923-333-8,
  808.   Z250.L34 1990
  809.   
  810.   Deep description of the authors' favorite exemplar and its influences
  811.   and relatives in each type category. It follows, without explicating,
  812.   the category system developed in the prior book. [wdr]
  813.   
  814.   Types of Typefacs and how to recognize them, J. Ben Lieberman,
  815.   Sterling, 1968
  816.   
  817.   "This isn't very good really, but it does give lots of examples of the
  818.   main categories." [Liam] [Old bibliographies praised this one, but I
  819.   haven't seen it so I can't comment.- wdr]
  820.   
  821.   Tally of Types (& other titles), Stanley Morrison,  Cambridge U. Press.
  822.   
  823.   A keepsake for CUP on the Monotype fonts he'd acquired for them when he
  824.   was Type Advisor to both Brit. Monotype & CUP (Cambridge University
  825.   Press, Cambs.UK), which discusses his hindsight on some of the great
  826.   revival fonts and some of the better new fonts. [wdr]
  827.   
  828.   Rookledge's International Type Finder 2nd, Perfect, Christopher and
  829.   Gordon Rookledge, Ed Moyer Bell Ltd / Rizzoli,  1-55921-052-4,
  830.   Z250.P42 [1st Ed was NY: Beil 1983]
  831.   
  832.   "Lg. trade pb. Indexed by stylistic & characteristic features. Shows
  833.   A-Z, a-z, 0-9 in primary figures, whether lining or ranging.
  834.   Particularly distinctive sorts are marked for ease of comparison.
  835.   Separate tables collect the distinctive characters for assistance  in
  836.   identifying a sample." [wdr]
  837.   
  838.   English Printers' Ornaments, Henry R. Plomer, Burt Franklin
  839.   
  840.   Paragraphs on Printing, Bruce Rogers, [Rudge] Dover, 0-486-23817-2
  841.   
  842.   Digital Typography: An Introduction to Type and Composition for
  843.   Computer System Design, Richard Rubinstein, Addison-Wesley, Reading,
  844.   Massachusetts: 1988. 340pp.
  845.   
  846.   For people who are disappointed with how the type looks on the laser,
  847.   this book explains the subleties of that medium and of the screen that
  848.   others miss. This is a study of the Human Factors of computer
  849.   typographic systems. [wdr]
  850.   
  851.   The Case for Legibility, John Ryder, The Bodley Head,  0-370-30158-7,
  852.   Z250.A4
  853.   
  854.   The Solotype Catalog of 4,147 Display typefaces, Dan X. Solo, Dover,
  855.   0-486-27169-2,   Z250.5.D57S654 19
  856.   
  857.   "Working catalog of a specialty Graphics Arts shop.  They use
  858.   proprietary optical special effects techniques to get Desktop
  859.   Publishing effects, and more, without the laser-printer grain.  Great
  860.   listing of 19th Century Decorated Types - probably the largest
  861.   collection in the world. Prices to order headlines from them are NOT
  862.   cheap however.  Their services are for professional or serious hobby
  863.   use only. Solo's previous Dover books show some number of complete
  864.   alphabets of a  general peculiar style; this one shows small fragments
  865.   of his entire usable collection, important as an index.  (According to
  866.   private correspondence, they have more faces that have not yet been
  867.   restored to usable condition.) Not well indexed, but indexed." [wdr]
  868.   
  869.   Stop Stealing Sheep & find out how type works, Erik Spiekermann & E.M.
  870.   Ginger., Adobe Press, 1993
  871.   
  872.   Introductory, motivational.  If you wonder why there are so many type
  873.   faces in the world, this is the book for you! [Liam] [The title refers
  874.   to the old joke: "A man who would  letterspace lowercase would also
  875.   steal sheep." [wdr]]
  876.   
  877.   The Art & Craft of Handmade Paper, Vance Studley, Dover, 0-486-26421-1,
  878.   TS1109.S83 1990
  879.   
  880.   Letters of Credit, Walter Tracey, Godine Press
  881.   
  882.   "I can't recommend this too highly.  It's not as introductory as the
  883.   Sheep Book, but conveys a feeling of love and respect for the letter
  884.   forms, and covers a lot of ground very, very well." [Liam]
  885.   
  886.   Printing Types: Their History, Forms & Use, Daniel Berkely Updike,
  887.   Harvard University Press, reprint by Dover.
  888.   
  889.   The standard reference. Tour-de-force history of type and type-styles.
  890.   A trifle conservative in its biases, but typography is conservative for
  891.   good reason: readibility. Check the addenda for his final words on
  892.   newer faces. [wdr]
  893.   
  894.   1.  I believe the Dover edition to be 3 vols Pbk; both the collectable
  895.   and later Harvard U.P. editions were two vols hbk.
  896.   
  897.   2.  I am informed by my bookseller & Books In Print that the Dover
  898.   edition is out of print. *sigh*  If a source be known, let me know.
  899.   Collectible HUP eds are not cheap, although later HUP eds may be had.
  900.   Most libararies have later HUP or Dover eds. [wdr]
  901.   
  902.   Modern Encyclopedia of Typefaces, 1960-90, Lawrence W. Wallis, Van
  903.   Nostrand Reinhold, 0-442-30809-4, Z250.W238 1990
  904.   
  905.   "Gives examples of most typefaces, almost all digital, designed &
  906.   distributed  in the last 30 years. Cross indexed by foundry and
  907.   designer, and sources and  looks-likes. Some historical bits.  Shows
  908.   full a-z,A-Z,0-9, a few points  (punctuation); and 0-9 again if both
  909.   lining and oldstyle supplied.  Only   complaint is that it omits small
  910.   caps even from what few fonts have 'em and the accented characters, of
  911.   which most have some but too few.  List \$25." [wdr]
  912.   
  913.   About Alphabets: Some Marginal Notes on Type Design, Hermann Zapf, MIT
  914.   Press, 0-262-74003-6
  915.   
  916.   Hermann Zapf & His Design Philosophy, Hermann Zapf, Society of
  917.   Typographic Arts, Chicago
  918.   
  919.   "Anything about, by, or vaguely connected with Hermann Zapf is probably
  920.   worth reading several times :-)" [Liam]
  921.   
  922.   Manuale Typographicum, Hermann Zapf,  MIT Press, 0-262-74004-4
  923.   
  924.   There are two books of this title  (portrait and landscape); this is
  925.   the only mass-market edition of either. Both are Zapf's selections of
  926.   interesting typographical quotations in his inimitable display
  927.   typography. [wdr]
  928.   
  929.   Microsoft Windows 3.1 Programmer's Reference, Microsoft Press.
  930.   
  931.   Documents the Panose system of typeface classification.  Probably
  932.   contains a general discussion of TrueType under MS Windows 3.1.
  933.   
  934.   Introduction to Typography, 3rd ed, Faber, London, 1962.
  935.   
  936.   A very good introduction for any beginner. Also discusses things like
  937.   illustrations and cover design, although not in great detail.
  938.   
  939.   Simon was a purist, as the editor of the 3rd edition remarks.  He did
  940.   not mention phototypesetting in his original edition, but some
  941.   observations on its uses and abuses have since been added.  Anders
  942.   Thulin <ath@linkoping.trab.se>
  943.   
  944.   [ed: additional bibliographic information appears in the file
  945.   "Additional-bibliography" on jasper.ora.com:/comp.fonts.  I have not
  946.   yet had time to integrate this bibliographic information into the FAQ]
  947.   
  948. Subject: 1.18. Font Encoding Standards
  949.   
  950.   Unicode Consortium; The Unicode Standard, volumes 1 and 2, Worldwide
  951.   Character Encoding, Addison-Wesley Publishing Co.
  952.   
  953.   Unicode consortium e-mail address is: <unicode-inc@hq.m4.metaphor.com>
  954.   
  955.   To obtain more information on Unicode or to order their printed material
  956.   and/or diskettes contact:
  957.   
  958.                            Steven A. Greenfield
  959.   
  960.                           Unicode Office Manager
  961.   
  962.                            1965 Charleston Road
  963.   
  964.                           Mountain View, CA 94043
  965.   
  966.                              Tel. 415-966-4189
  967.   
  968.                              Fax. 415-966-1637
  969.   
  970.   Xerox Character Code Standard, Xerox Corp., Xerox Systems Institute,
  971.   475 Oakmead Parkway, Sunnyvale, CA 94086
  972.   
  973. Subject: 1.19. TrueType
  974.   
  975.   George Moore announces the following information regarding TrueType
  976.   fonts:
  977.   
  978.   "I am pleased to announce that there is now one central location for all
  979.   official Microsoft TrueType information available on the Internet.  The
  980.   9 files listed below are available for anonymous ftp access on
  981.   ftp.uu.net (137.39.1.9) in the /vendor/microsoft/TrueType-Info
  982.   directory.  The most important of those files is the TrueType Font Files
  983.   Specifications, a 400 page book which describes in excruciating detail
  984.   how to build a TrueType font.  Other information is also available in
  985.   the same directory and other files will be added from time to time.
  986.   
  987.   For those people who do not have ftp access to the Internet can find the
  988.   same information available for downloading on Compuserve in the
  989.   Microsoft developer relations forum (GO MSDR) in the TrueType library.
  990.   
  991.   Please be aware that the TrueType specifications is a copyrighted work
  992.   of Microsoft and Apple and can not be resold for profit.
  993.   
  994.   TrueType developer information files on ftp.uu.net:
  995.   
  996.     1. ttspec1.zip, ttspec2.zip, and ttspec3.zip
  997.   
  998.        The TrueType Specification:
  999.   
  1000.        These three compressed files contain the "TrueType Font Files
  1001.        Specifications", a 400 page book complete with illustrations which
  1002.         details how to construct a TrueType font from scratch (or build
  1003.        a tool   to do so), the TrueType programming language, and the
  1004.        complete format   of each sub-table contained in the .TTF file.
  1005.        These documents are   stored in Word for Windows 2.0 format and
  1006.        require Windows 3.1 for   printing.  See the "readme.doc" (in
  1007.        ttspec1.zip) for printing   instructions.  Requires 2.5MB of disk
  1008.        space after uncompression.
  1009.   
  1010.        This manual is a superset of the similar specifications from Apple
  1011.        and   has added information specific to Windows that is not
  1012.        present in the   Apple version.
  1013.   
  1014.     2. ttfdump.zip
  1015.   
  1016.        An MS-DOS executable which will dump the contents of a TrueType
  1017.        font   out in a human-readable fashion.  It allows you to dump the
  1018.        entire   font, or just specific sub-tables.  This tool, combined
  1019.        with the   specifications above, allows very effective debugging
  1020.        or exploration   of any TrueType font.  For example, to dump the
  1021.        contents of the 'cmap'   (character code to glyph index mapping)
  1022.        table, enter:
  1023.   
  1024.        ttfdump fontname.ttf -tcmap -nx
  1025.   
  1026.        Entering "ttfdump" with no options will give you a help message.
  1027.   
  1028.     3. ttfname.zip
  1029.   
  1030.        Example C source code on how to parse the contents of a TrueType
  1031.        font.    Although this particular example will open up the file
  1032.        and locate the   font name contained within the 'name' table, it
  1033.        could be readily   adapted to parse any other structure in the
  1034.        file.  This compressed zip   file also contains many useful
  1035.        include files which have pre-defined   structures set up for the
  1036.        internal tables of a TrueType font file.    This code may be
  1037.        useful for developers who wish to parse the TrueType   data stream
  1038.        returned by the GetFontData() API in Windows 3.1.
  1039.   
  1040.     4. tt-win.zip
  1041.   
  1042.        A 31 page Word for Windows 2.0 document which is targeted for the
  1043.        Windows developer who is interested in learning about some of the
  1044.         capabilities TrueType adds to Windows 3.1.  Contains many
  1045.        illustrations.
  1046.   
  1047.     5. embeddin.zip
  1048.   
  1049.        A text file which describes all of the information necessary for a
  1050.         Windows developer to add TrueType font embedding capabilities to
  1051.        their   application.  Font embedding allows the application to
  1052.        bundle the   TrueType fonts that were used in that document and
  1053.        transport it to   another platform where the document can be
  1054.        viewed or printed   correctly.
  1055.   
  1056.     6. tt-talk.zip
  1057.   
  1058.        The TrueType Technical Talks 1 and 2.  These text files describe
  1059.        some   of the things that are happening with TrueType behind the
  1060.        scenes in   Windows 3.1.  The first document walks the reader
  1061.        through all of the   steps that occur from when the user first
  1062.        presses the key on the   keyboard until that character appears on
  1063.        the screen (scaling, hinting,   drop out control, caching and
  1064.        blitting).  The second talk describes   one of the unique features
  1065.        of TrueType called non-linear scaling which   allows the font
  1066.        vendor to overcome some of the physical limitations of   low
  1067.        resolution output devices.
  1068.   
  1069.     7. lucida.zip
  1070.   
  1071.        This text file contains useful typographic information on the 22
  1072.        Lucida fonts which are contained in the Microsoft TrueType Font
  1073.        Pack   for Windows.  It gives pointers on line-layout, mixing and
  1074.        matching   fonts in the family and a little history on each
  1075.        typeface.  This   information was written by the font's designers,
  1076.        Chuck Bigelow & Kris   Holmes."
  1077.   
  1078.  
  1079.